In [32]:
    
# Objects and Data Structures Assessment Test
    
Write a brief description of all the following Object Types and Data Structures we've learned about:
Numbers:
Strings:
Lists:
Tuples:
Dictionaries:
In [6]:
    
10*10/1 + 2**2 - 3.75
    
    Out[6]:
Explain what the cell below will produce and why. Can you change it so the answer is correct? It will produce 0.6666 because it is python 3 so will use real division
In [7]:
    
2/3
    
    Out[7]:
Answer these 3 questions without typing code. Then type code to check your answer.
What is the value of the expression 4 * (6 + 5) 
    44
What is the value of the expression 4 * 6 + 5 
    29
What is the value of the expression 4 + 6 * 5 
    34
In [10]:
    
4 + 6 * 5
    
    Out[10]:
What is the type of the result of the expression 3 + 1.5 + 4? It is a float because one of the number is a floating point
LaTex: a not sure how to get the
What would you use to find a number’s square root, as well as its square?
In [17]:
    
print(2**2)    # squared (raise to the power of 2)
print(2**0.5)  # square root (raise to the power of 1/2)
    
    
Given the string 'hello' give an index command that returns 'e'. Use the code below:
In [25]:
    
s = 'hello'
# Print out 'e' using indexing
# Code here
s[1]
    
    Out[25]:
Reverse the string 'hello' using indexing:
In [23]:
    
s ='hello'
# Reverse the string using indexing
print (s[::-1])
# Code here
    
    
Given the string hello, give two methods of producing the letter 'o' using indexing.
In [35]:
    
s ='hello'
# Print out the
# Code here
print(s[-1])
print(s[4])
    
    
Build this list [0,0,0] two separate ways.
In [75]:
    
l = [0,0,0]
print (l)
l = [0]*3
print(l)
l1 = list()
l1.append(0)
l1.append(0)
l1.append(0)
print(l1)
    
    
Reassign 'hello' in this nested list to say 'goodbye' item in this list:
In [7]:
    
l = [1,2,[3,4,'hello']]
l1 = l[2]
l1[l1.index('hello')] = 'goodbye'
print(l)
    
    
Sort the list below:
In [77]:
    
l = [5,3,4,6,1]
l.sort()
print(l)
l = [5,3,4,6,1]
print(sorted(l))
    
    
Using keys and indexing, grab the 'hello' from the following dictionaries:
In [19]:
    
d = {'simple_key':'hello'}
# Grab 'hello'
print(d['simple_key'])
    
    
In [22]:
    
d = {'k1':{'k2':'hello'}}
# Grab 'hello'
print(d['k1']['k2'])
    
    
In [78]:
    
# Getting a little tricker
d = {'k1':[{'nest_key':['this is deep',['hello']]}]}
#Grab hello
print(d['k1'][0]['nest_key'][1][0])
    
    
In [33]:
    
# This will be hard and annoying!
d = {'k1':[1,2,{'k2':['this is tricky',{'tough':[1,2,['hello']]}]}]}
    
In [92]:
    
d = {'k1':[1,2,{'k2':['this is tricky',{'tough':[1,2,['hello']]}]}]}# print it all
print(d)
# get the set at 'k1'
my_set = d['k1']
print('my_set: ' + str(my_set))
# get the dictionary at index 2 of the set
my_dict = my_set[2]
print('my_dict: ' + str(my_dict))
my_set1 = my_dict['k2']
print ('my_set1: ' + str(my_set1))
my_dict2 = my_set1[1]
print ('my_dict2: ' + str(my_dict2))
my_set2 = my_dict2['tough']
print ('my_set2: ' + str(my_set2))
my_set3 = my_set2[2]
print('my_set3: ' + str(my_set3))
indx = my_set3.index('hello')
print('indx = ' + str(indx))
print(my_set3[indx])
print (d['k1'][2]['k2'][1]['tough'][2][0])
    
    
Can you sort a dictionary? Why or why not? you cant sort a dictionary because it is keys and values
What is the major difference between tuples and lists? tuples are immutable and lists are mutable
How do you create a tuple? with parentheses and a comma delimited list (1,2.3)
What is unique about a set? a set contains only unique items and is immutable
Use a set to find the unique values of the list below
In [68]:
    
l = [1,2,2,33,4,4,11,22,3,3,2]
print (l)
s = set(l)
print (s)
    
    
For the following quiz questions, we will get a preview of comparison operators:
| Operator | Description | Example | 
|---|---|---|
| == | If the values of two operands are equal, then the condition becomes true. | (a == b) is not true. | 
| != | If values of two operands are not equal, then condition becomes true. | |
| <> | If values of two operands are not equal, then condition becomes true. | (a <> b) is true. This is similar to != operator. | 
| > | If the value of left operand is greater than the value of right operand, then condition becomes true. | (a > b) is not true. | 
| < | If the value of left operand is less than the value of right operand, then condition becomes true. | (a < b) is true. | 
| >= | If the value of left operand is greater than or equal to the value of right operand, then condition becomes true. | (a >= b) is not true. | 
| <= | If the value of left operand is less than or equal to the value of right operand, then condition becomes true. | (a <= b) is true. | 
What will be the resulting Boolean of the following pieces of code (answer fist then check by typing it in!)
In [69]:
    
# Answer before running cell
2 > 3
#false
    
    Out[69]:
In [70]:
    
# Answer before running cell
3 <= 2
#false
    
    Out[70]:
In [71]:
    
# Answer before running cell
3 == 2.0
#false
    
    Out[71]:
In [72]:
    
# Answer before running cell
3.0 == 3
#true
    
    Out[72]:
In [73]:
    
# Answer before running cell
4**0.5 != 2
#false
    
    Out[73]:
Final Question: What is the boolean output of the cell block below?
In [74]:
    
# two nested lists
l_one = [1,2,[3,4]]
l_two = [1,2,{'k1':4}]
#True or False?
#3>=4
#false
l_one[2][0] >= l_two[2]['k1']
    
    Out[74]: